home *** CD-ROM | disk | FTP | other *** search
/ The 640 MEG Shareware Studio 2 / The 640 Meg Shareware Studio CD-ROM Volume II (Data Express)(1993).ISO / clang / fgl105c.zip / 07-08.C < prev    next >
Text File  |  1991-05-05  |  513b  |  28 lines

  1. main()
  2. {
  3.    int old_mode;
  4.  
  5.    old_mode = fg_getmode();
  6.    fg_setmode(16);
  7.    fg_setcolor(10);
  8.    fg_initw();
  9.    fg_setworld(0.0,6.39,0.0,3.49);
  10.    fg_setratio(2.0);
  11.    fg_setsizew(0.21);
  12.  
  13.    fg_movew(3.2,3.0);
  14.    fg_swchar("cos\\^2\\h\\ + sin\\^2\\h\\ = 1",25,0);
  15.  
  16.    fg_movew(3.2,2.0);
  17.    fg_swchar("H\\v2O   U\\v2\\v3\\v2",18,0);
  18.  
  19.    fg_movew(3.2,1.0);
  20.    fg_setratio(1.0);
  21.    fg_swchar("One _word_ is underlined.",25,0);
  22.  
  23.    fg_waitkey();
  24.  
  25.    fg_setmode(old_mode);
  26.    fg_reset();
  27. }
  28.